home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gxdcolor.h < prev    next >
C/C++ Source or Header  |  1997-02-20  |  6KB  |  185 lines

  1. /* Copyright (C) 1993, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxdcolor.h */
  20. /* Device color representation for Ghostscript */
  21.  
  22. #ifndef gxdcolor_INCLUDED
  23. #  define gxdcolor_INCLUDED
  24.  
  25. #include "gscsel.h"
  26. #include "gsdcolor.h"
  27. #include "gsropt.h"
  28. #include "gsstruct.h"            /* for extern_st, GC procs */
  29.  
  30. /* Define opaque types. */
  31.  
  32. #ifndef gx_device_DEFINED
  33. #  define gx_device_DEFINED
  34. typedef struct gx_device_s gx_device;
  35. #endif
  36.  
  37. /*
  38.  * Define a source structure for RasterOp.
  39.  */
  40. typedef struct gx_rop_source_s {
  41.     const byte *sdata;
  42.     int sourcex;
  43.     uint sraster;
  44.     gx_bitmap_id id;
  45.     gx_color_index scolors[2];
  46.     bool use_scolors;
  47. } gx_rop_source_t;
  48. /*
  49.  * Note that the following definition depends on the gx_color_index for
  50.  * black, which may not be 0.  Clients must check this and construct
  51.  * a different null source if necessary.
  52.  */
  53. #define gx_rop_no_source_body(black_pixel)\
  54.   NULL, 0, 0, gx_no_bitmap_id, {black_pixel, black_pixel}, true
  55. #define gx_rop_source_set_color(prs, pixel)\
  56.   ((prs)->scolors[0] = (prs)->scolors[1] = (pixel))
  57. extern const gx_rop_source_t gx_rop_no_source_0; /* with black_pixel = 0 */
  58. #define set_rop_no_source(source, no_source, dev)\
  59.   do {\
  60.     gx_color_index black_ =\
  61.       (*dev_proc(dev, map_rgb_color))(dev, (gx_color_index)0,\
  62.                       (gx_color_index)0, (gx_color_index)0);\
  63.     if ( black_ == 0 )\
  64.       source = &gx_rop_no_source_0;\
  65.     else\
  66.       { no_source = gx_rop_no_source_0;\
  67.         gx_rop_source_set_color(&no_source, black_);\
  68.     source = &no_source;\
  69.       }\
  70.   } while (0)
  71.  
  72. /*
  73.  * Device colors are 'objects' (with very few procedures).  In order to
  74.  * simplify memory management, we use a union, but since different variants
  75.  * may have different pointer tracing procedures, we have to include those
  76.  * procedures in the type.
  77.  */
  78.  
  79. struct gx_device_color_procs_s {
  80.  
  81.     /*
  82.      * If necessary and possible, load the halftone or Pattern cache
  83.      * with the rendering of this color.
  84.      */
  85.  
  86. #define dev_color_proc_load(proc)\
  87.   int proc(P4(gx_device_color *pdevc, const gs_imager_state *pis,\
  88.     gx_device *dev, gs_color_select_t select))
  89.     dev_color_proc_load((*load));
  90.  
  91.     /*
  92.      * Fill a rectangle with the color.
  93.      * We pass the device separately so that pattern fills can
  94.      * substitute a tiled mask clipping device.
  95.      */
  96.  
  97. #define dev_color_proc_fill_rectangle(proc)\
  98.   int proc(P8(const gx_device_color *pdevc, int x, int y, int w, int h,\
  99.     gx_device *dev, gs_logical_operation_t lop, const gx_rop_source_t *source))
  100.     dev_color_proc_fill_rectangle((*fill_rectangle));
  101.  
  102.     /*
  103.      * Fill a masked region with a color.  Nearly all device colors
  104.      * use the default implementation, which simply parses the mask
  105.      * into rectangles and calls fill_rectangle.  Note that in this
  106.      * case there is no RasterOp source: the mask is the source.
  107.      */
  108.  
  109. #define dev_color_proc_fill_masked(proc)\
  110.   int proc(P12(const gx_device_color *pdevc, const byte *data, int data_x,\
  111.     int raster, gx_bitmap_id id, int x, int y, int w, int h,\
  112.     gx_device *dev, gs_logical_operation_t lop, bool invert))
  113.     dev_color_proc_fill_masked((*fill_masked));
  114.  
  115.     /*
  116.      * Trace the pointers for the garbage collector.
  117.      */
  118.  
  119.     struct_proc_enum_ptrs((*enum_ptrs));
  120.     struct_proc_reloc_ptrs((*reloc_ptrs));
  121.  
  122. };
  123.  
  124. /* Define the default implementation of fill_masked. */
  125. dev_color_proc_fill_masked(gx_dc_default_fill_masked);
  126.  
  127. extern_st(st_device_color);
  128. /* public_st_device_color() is defined in gsdcolor.h */
  129.  
  130. /* Define the standard device color types. */
  131. /* See gsdcolor.h for details. */
  132. extern const gx_device_color_procs
  133. #define gx_dc_type_none (&gx_dc_procs_none)
  134.     gx_dc_procs_none,            /* gxdcolor.c */
  135. #define gx_dc_type_null (&gx_dc_procs_null)
  136.     gx_dc_procs_null,            /* gxdcolor.c */
  137. #define gx_dc_type_pure (&gx_dc_procs_pure)
  138.     gx_dc_procs_pure,            /* gxdcolor.c */
  139. /*#define gx_dc_type_pattern (&gx_dc_procs_pattern)*/
  140.     /*gx_dc_procs_pattern,*/        /* gspcolor.c */
  141. #define gx_dc_type_ht_binary (&gx_dc_procs_ht_binary)
  142.     gx_dc_procs_ht_binary,            /* gxht.c */
  143. #define gx_dc_type_ht_colored (&gx_dc_procs_ht_colored)
  144.     gx_dc_procs_ht_colored;            /* gxcht.c */
  145.  
  146. #define gs_color_writes_pure(pgs)\
  147.   color_writes_pure((pgs)->dev_color, (pgs)->log_op)
  148.  
  149. /* Set up device color 1 for writing into a mask cache */
  150. /* (e.g., the character cache). */
  151. void gx_set_device_color_1(P1(gs_state *pgs));
  152.  
  153. /* Remap the color if necessary. */
  154. int gx_remap_color(P1(gs_state *));
  155. #define gx_set_dev_color(pgs)\
  156.   if ( !color_is_set((pgs)->dev_color) )\
  157.    { int code_dc = gx_remap_color(pgs);\
  158.      if ( code_dc != 0 ) return code_dc;\
  159.    }
  160.  
  161. /* Indicate that the device color needs remapping. */
  162. #define gx_unset_dev_color(pgs)\
  163.   color_unset((pgs)->dev_color)
  164.  
  165. /* Load the halftone cache in preparation for drawing. */
  166. #define gx_color_load_select(pdevc, pis, dev, select)\
  167.   (*(pdevc)->type->load)(pdevc, pis, dev, select)
  168. #define gx_color_load(pdevc, pis, dev)\
  169.   gx_color_load_select(pdevc, pis, dev, gs_color_select_texture)
  170. #define gs_state_color_load(pgs)\
  171.   gx_color_load((pgs)->dev_color, (const gs_imager_state *)(pgs),\
  172.         (pgs)->device)
  173.  
  174. /* Fill a rectangle with a color. */
  175. #define gx_device_color_fill_rectangle(pdevc, x, y, w, h, dev, lop, source)\
  176.   (*(pdevc)->type->fill_rectangle)(pdevc, x, y, w, h, dev, lop, source)
  177. #define gx_fill_rectangle_device_rop(x, y, w, h, pdevc, dev, lop)\
  178.   gx_device_color_fill_rectangle(pdevc, x, y, w, h, dev, lop, NULL)
  179. #define gx_fill_rectangle_rop(x, y, w, h, pdevc, lop, pgs)\
  180.   gx_fill_rectangle_device_rop(x, y, w, h, pdevc, (pgs)->device, lop)
  181. #define gx_fill_rectangle(x, y, w, h, pdevc, pgs)\
  182.   gx_fill_rectangle_rop(x, y, w, h, pdevc, (pgs)->log_op, pgs)
  183.  
  184. #endif                    /* gxdcolor_INCLUDED */
  185.